From 7c23519a56b9a5fc6cddcd99b27db87a9ad84433 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Tue, 25 Dec 2007 16:57:25 +0000 Subject: [PATCH] Fix mem leak. Bug #505556. svn path=/trunk/; revision=19240 --- ChangeLog | 8 ++++++-- modules/other/gail/gailitem.c | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e6afb0f163..8971374a99 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,14 +1,18 @@ 2007-12-22 Christian Persch + * modules/other/gail/gailitem.c: Fix mem leak. Bug #505556. + +2007-12-25 Christian Persch + * modules/other/gail/gailwindow.c: (gail_window_initialize): Initialise |widget|. Fixes a buglet introduced by the commit from bug #505226. -2007-12-22 Christian Persch +2007-12-25 Christian Persch * modules/other/gail/*.h: Use G_BEGIN_DECLS/G_END_DECLS. Bug #505268. -2007-12-22 Christian Persch +2007-12-25 Christian Persch * modules/other/gail/*.[ch]: Remove relocations from the atk factories. Remove unused gail_foo_new() functions. Fix object diff --git a/modules/other/gail/gailitem.c b/modules/other/gail/gailitem.c index 33bd311e71..042da2f69c 100644 --- a/modules/other/gail/gailitem.c +++ b/modules/other/gail/gailitem.c @@ -275,6 +275,8 @@ gail_item_get_name (AtkObject *obj) g_value_unset (&value); break; } + + g_value_unset (&value); } } name = item->text; -- 2.30.2